home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / autocomplete_manager-2.3-fx.xpi / chrome / acmanager.jar / content / addEntry.xul < prev    next >
Extensible Markup Language  |  2008-03-14  |  3KB  |  84 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!-- ***** BEGIN LICENSE BLOCK *****
  4.    - Version: MPL 1.1
  5.    -
  6.    - The contents of this file are subject to the Mozilla Public License Version
  7.    - 1.1 (the "License"); you may not use this file except in compliance with
  8.    - the License. You may obtain a copy of the License at
  9.    - http://www.mozilla.org/MPL/
  10.    -
  11.    - Software distributed under the License is distributed on an "AS IS" basis,
  12.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.    - for the specific language governing rights and limitations under the License.
  14.    -
  15.    - The Original Code is the Autocomplete Manager extension.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Nikitas Liogkas <nikitas@acm.org>.
  19.    - Portions created by the Initial Developer are Copyright (C) 2005-2008
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s): 
  23.    - Version 2.3
  24.    -
  25.    - ***** END LICENSE BLOCK ***** -->
  26.  
  27. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  28.  
  29. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  30.         id="ACM_AddEntry"
  31.         title="Add history entry" 
  32.         buttons="accept, cancel"
  33.         resizable="yes"
  34.         persist="width height screenX screenY" 
  35.         ondialogaccept="acm_onAddOK();">
  36.     
  37.   <script type="application/javascript; version=1.7" src="chrome://acmanager/content/rdfUtils.js"/> 
  38.   <script type="application/javascript" src="chrome://acmanager/content/treeUtils.js"/>
  39.   <script type="application/javascript" src="chrome://acmanager/content/options.js"/> 
  40.   <script type="application/javascript" src="chrome://acmanager/content/acpopup.js"/>
  41.  
  42.   <!-- do not remove this id, since we use it identify this dialog in treeUtils.js -->
  43.   <groupbox id="acm_addEntryBox">
  44.     <caption label="Information for the new entry"/>
  45.     <grid flex="1">
  46.       <columns>
  47.         <column/>
  48.         <column flex="1"/>
  49.       </columns>
  50.  
  51.       <!-- If you change the ids of these textboxes, also change those 
  52.        at the top of preferences.js -->
  53.       <rows>
  54.         <row align="center">
  55.           <hbox align="center" pack="end"><label value="Title:"/></hbox>
  56.         <textbox id="add_he_title" class="plain"/>
  57.         </row>
  58.  
  59.         <row align="center">
  60.       <hbox align="center" pack="end"><label value="Page Address:"/></hbox>
  61.       <textbox id="add_he_address" class="plain"/>
  62.         </row>
  63.  
  64.         <!-- <row align="center">
  65.       <hbox align="center" pack="end"><label value="First Visit Date:"/></hbox>
  66.       <textbox id="add_he_first_visit" class="plain"/>
  67.         </row>
  68.  
  69.         <row align="center">
  70.       <hbox align="center" pack="end"><label value="Last Visit Date:"/></hbox>
  71.       <textbox id="add_he_last_visit" class="plain"/>
  72.         </row>
  73.  
  74.         <row align="center">
  75.       <hbox align="center" pack="end"><label value="Number of Visits:"/></hbox>
  76.       <textbox id="add_he_visit_count" class="plain"/>
  77.         </row> -->
  78.       </rows>
  79.  
  80.     </grid>
  81.   </groupbox>
  82.  
  83. </dialog>
  84.